home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Frameworks / Extension Shell 1.4 / Extension Shell 1.4 (Source) / Extension Shell 1.4 Includes / ES Address Table.h next >
Text File  |  1995-11-03  |  1KB  |  46 lines

  1. /*    NAME:
  2.         ES Address Table.h
  3.  
  4.     WRITTEN BY:
  5.         Dair Grant
  6.                  
  7.     DESCRIPTION:
  8.         Header file for ES Address Table.c. Contains the definition of a
  9.         standard address table for use with Extension Shell.
  10.  
  11.     ___________________________________________________________________________
  12. */
  13. #ifndef __ES_ADDRESS_TABLE__
  14. #define __ES_ADDRESS_TABLE__
  15. #pragma options align=mac68k
  16. //=============================================================================
  17. //        Include files                                                                 
  18. //-----------------------------------------------------------------------------
  19. #include "ES.h"
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35. //=============================================================================
  36. //        Structures                                                                 
  37. //-----------------------------------------------------------------------------
  38. // The default address table is an array of ProcPtrs. To extend the address
  39. // table, add fields after theTable.
  40. typedef struct {
  41.     ProcPtr            theTable[kMaxNumCodeResources+1];
  42. } ESAddressTable;
  43.  
  44. #pragma options align=reset
  45. #endif
  46.